home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Our Solar System
/
Our Solar System.iso
/
jupiter
/
jptrfli2
/
unzip.bat
< prev
Wrap
DOS Batch File
|
1991-08-31
|
2KB
|
55 lines
@echo off
cls
if "%1"=="JUPITER" goto JUPITER
if "%1"=="jupiter" goto JUPITER
echo.
echo.
echo This batch file will decompress all of the *.ZIP files in the current
echo subdirectory that accompany the SuperVGA movie JUPITER. In order to
echo properly execute this you must type
echo UNZIP JUPITER
echo.
echo Please re-type the command as shown above
echo.
goto end
:JUPITER
cls
if not exist JUPITER.ZIP goto MISSFILE
if not exist PKUNZIP.EXE goto MISSFILE
PKUNZIP JUPITER
if exist JUPITER.FLI goto NEXT
goto FAILED
:NEXT
if exist PLAY.EXE goto NEXTONE
goto FAILED
:NEXTONE
if exist RUN.BAT goto FINISHED
:FAILED
cls
echo.
echo.
echo Apparently the files were not successfully decompressed to create
echo JUPITER.FLI PLAY.EXE RUN.BAT
echo Please check your subdirectory and try again.
echo.
goto end
:MISSFILE
echo.
echo Either you are trying to run this command from the distribution floppy or
echo a necessary file is missing from your hard drive subdirectory.
echo The following file is required:
echo JUPITER.ZIP and PKUNZIP.EXE
echo.
goto end
:FINISHED
cls
echo.
echo.
echo You have sucessfully decompressed JUPITER. If you plan to use a ram drive
echo or expanded memory, you must prepare those areas and copy the following
echo files to that location manually: JUPITER.FLI PLAY.EXE RUN.BAT
echo.
echo If you wish to run the program from your hard drive now, just type
echo RUN JUPITER
echo.
:end